home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / GLUT-3.7 / PROGS / mesademos / IMAGE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-12  |  268 b   |  21 lines

  1. /* Lifted from include/gltk.h */
  2.  
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. /*
  8. ** RGB Image Structure
  9. */
  10.  
  11. typedef struct _RGBImageRec {
  12.     int sizeX, sizeY;
  13.     unsigned char *data;
  14. } RGBImageRec;
  15.  
  16. extern RGBImageRec *RGBImageLoad(char *);
  17.  
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21.